home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 80 / XENIATGM80.iso / Goodies / Blood 2 / Source / data.z / Sparam.h < prev    next >
C/C++ Source or Header  |  1999-04-02  |  695b  |  30 lines

  1. /****************************************************************************
  2. ;
  3. ;     MODULE:        SPARAM (.H)
  4. ;
  5. ;    PURPOSE:        String Parameter funcions
  6. ;
  7. ;    HISTORY:        10/13/96 [blg] This file was created
  8. ;
  9. ;    COMMENT:        Copyright (c) 1996, Monolith Productions Inc.
  10. ;
  11. ****************************************************************************/
  12.  
  13.  
  14. #ifndef _SPARAM_H_
  15. #define _SPARAM_H_
  16.  
  17.  
  18. // Prototypes...
  19.  
  20. BOOL    Sparam_Get(char* sDest, const char* sSource, const char* sId);
  21. BOOL    Sparam_Add(char* sSource, const char* sId, const char* sParam);
  22. BOOL    Sparam_Add(char* sSource, const char* sId, int nParam);
  23. BOOL    Sparam_Remove(char* sSource, const char* sId);
  24.  
  25.  
  26. // EOF...
  27.  
  28. #endif
  29.  
  30.